home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Mag HDD Backup
/
Amiga Mag HDD Backup.zip
/
Amiga Mag HDD Backup
/
Alexander.img.bin
/
Alexander.img
/
***9.11 All NEWer important
/
Stockman⁄StructDraw Post
/
sd.PSinit
< prev
next >
Wrap
Text File
|
1994-09-16
|
2KB
|
107 lines
%%Creator: DrawStruc
% SSG PostScript definitions
% PostScript is a registered trademark of Adobe Systems Incorporated
/inch {72 mul} def
/pschar 1 string def
% ellipse definition, call as: x y xrad yrad beginangle endangle ellipse
/ellipsedict 8 dict def
ellipsedict /mtrx matrix put
/ellipse{
ellipsedict begin
/endangle exch def
/startangle exch def
/yrad exch def
/xrad exch def
/y exch def
/x exch def
/savematrix mtrx currentmatrix def
x y translate
xrad yrad scale
0 0 1 startangle endangle arc
savematrix setmatrix
end
} def
/sdpat1 %horizontal line pattern
{newpath
0.5 setlinewidth
-200 5 720
{ -200 exch moveto
1050 0 rlineto
} for
stroke
} def
/sdpat2 % vertical line pattern
{newpath
0.5 setlinewidth
-200 5 812
{ 0 moveto
0 992 rlineto
} for
stroke
} def
/sdpat3 % horizontal dashed pattern
{newpath
1 setlinewidth
[4 6] 0 setdash
-200 5 992
{ -200 exch moveto
1050 0 rlineto
} for
stroke
} def
/sdpat4 % vertical thick line pattern
{newpath
2 setlinewidth
-200 5 812
{ -200 moveto
0 992 rlineto
} for
stroke
} def
/sdpat5 % cross hatch pattern
{
sdpat1
sdpat2
} def
/sdpat6 % vertical line pattern - widely spaced
{newpath
0.5 setlinewidth
-200 10 812
{ -200 moveto
0 992 rlineto
} for
stroke
} def
/sdpat7 % horizontal dashed pattern - long and widely spaced
{newpath
0.5 setlinewidth
[8 10] 0 setdash
-200 5 992
{ -200 exch moveto
1050 0 rlineto
} for
stroke
} def
/sdpat8 % cross hatch dashed pattern
{newpath
0.5 setlinewidth
[4 6] 0 setdash
-200 5 992
{ -200 exch moveto
812 0 rlineto
} for
stroke
-200 5 812
{ -200 moveto
0 992 rlineto
} for
stroke
} def
%---------- end sd.init PS definitions -------------------